projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1eb734f
)
usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
author
Bryan Wu
<
[email protected]
>
Fri, 2 Jan 2009 00:48:07 +0000
(19:48 -0500)
committer
Remy Bohmer
<
[email protected]
>
Wed, 28 Jan 2009 18:57:28 +0000
(19:57 +0100)
The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive
000016244373FFB4
does not like to be reset, so check for it.
Signed-off-by: Bryan Wu <
[email protected]
>
Signed-off-by: Mike Frysinger <
[email protected]
>
Signed-off-by: Remy Bohmer <
[email protected]
>
common/usb_storage.c
patch
|
blob
|
history
diff --git
a/common/usb_storage.c
b/common/usb_storage.c
index 973d82f7d6f91b034e2e055d80ad349447afb5ec..9ed629708a8f233e3e2adb04ba872059e3c95812 100644
(file)
--- a/
common/usb_storage.c
+++ b/
common/usb_storage.c
@@
-1235,6
+1235,13
@@
int usb_stor_get_info(struct usb_device *dev, struct us_data *ss,
/* SanDisk Corporation Cruzer Micro 20044318410546613953 */
(dev->descriptor.idVendor == 0x0781 &&
dev->descriptor.idProduct == 0x5151)
+ ||
+ /*
+ * SanDisk Corporation U3 Cruzer Micro 1/4GB
+ * Flash Drive 000016244373FFB4
+ */
+ (dev->descriptor.idVendor == 0x0781 &&
+ dev->descriptor.idProduct == 0x5406)
)
USB_STOR_PRINTF("usb_stor_get_info: skipping RESET..\n");
else